home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / Technical Documentation / develop / develop Issue 25 / develop Issue 25 code / ToolFrontEnd / ToolFrontEnd Source / ToolFrontEnd Compiler / ToolServer.h < prev   
Encoding:
C/C++ Source or Header  |  1995-11-06  |  492 b   |  21 lines  |  [TEXT/MPS ]

  1. /* ToolServer.h: How to create and send an AppleEvent to ToolServer */
  2.  
  3. #ifndef __TOOLSERVER__
  4. #define __TOOLSERVER__
  5.  
  6. #include <Types.h>
  7. #include <Aliases.h>
  8. #include <AppleEvents.h>
  9. #include <Files.h>
  10.  
  11. #define kToolServerCreator 'MPSX'
  12. #define kToolServerType 'MPSX'
  13.  
  14. typedef char *CString;
  15. typedef CString *CStringPtr, **CStringHandle;
  16.  
  17. OSErr ToolServerCommand(AEDesc *command, CStringHandle *output, CStringHandle *diagnostic,
  18.                             AEIdleUPP idleProc, AEFilterUPP filterProc);
  19.  
  20. #endif
  21.